home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / PGM_TOOL / PREVIEW / CLRCODE.TXT < prev    next >
Text File  |  1995-11-12  |  1KB  |  49 lines

  1.  
  2. Root Dir
  3. --------
  4.  
  5. wPreview.pas:
  6.  
  7.   Delete BarCode1 control from wPreview form.
  8.   Delete code from pxBarCode that references BarCode1 control properties.
  9.   Add "Misc" to first "Uses" line (in Interface).
  10.   Delete VBXctrl, TrueBar, DBFserver from "Uses" list.
  11.   Delete all of second "Uses" line (in Implementation).
  12.   Delete GetProgIni and PutProgIni lines.
  13.   In LoadPrinters routine, delete references to LastHardCopy, and just have:
  14.       WantsPreview:=true;
  15.       CurDest:=pr.printerindex+1;
  16.   Delete all code involving "LoadPrinter" stuff in StartLinePrinter,
  17.     just leave one line: "Lp.LoadPrinters(PrnInitFile);"
  18.   And comment out references to "Corporate Mono" fonts.
  19.   Delete all references to Capture and EndCap, and their actual procedures.
  20.   Delete "SaveCommands()" debugging line in PlayBackPage routine.
  21.  
  22.  
  23. wSelPrn.pas:
  24.  
  25.   Delete "wMainWin" reference in "Uses" in Interface;
  26.   Change "Uses" in Implementation to "Uses DLmain;" only.
  27.   Add "Misc" to "Uses" in Interface.
  28.   Delete all lines containing "Capture".
  29.   Change all references to "JCmain" to "MainWin".
  30.  
  31.  
  32. Clp2Dlfi
  33. --------
  34.  
  35.   Copy wPreview.* and wSelPrn.* to Clp2Dlfi.
  36.  
  37. wPreview.pas:
  38.  
  39.   Change "Misc" of "Uses" line in Interface to
  40.     "VBXctrl,DBFserver,CommonCode";
  41.  
  42. wSelPrn.pas:
  43.  
  44.   Change "Misc" of "Uses" line in Interface to
  45.     "DBFserver,CommonCode";
  46.  
  47.  
  48.  
  49.